home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
system
/
ffg202.zip
/
DEMO_BAT.ZIP
/
ZIPTODAY.BAT
< prev
Wrap
DOS Batch File
|
1995-04-01
|
471b
|
20 lines
@echo off
cls
echo All files on C: dated today will be archived into a ZIP file (TODAY.ZIP).
echo Gathering a list of today's files...
pause >nul
echo on
ffg>today.lst C:* /dT /fp /fs!
@echo off
pkzip -wH today.ZIP @today.lst
del today.lst
cls
echo Next File Finder/Grouper will be used to view the contents of the ZIP file:
pause
echo on
ffg .\* /r /z.zip /dT
@echo off
echo Since this is a demo the TODAY.ZIP will now be deleted.
pause
del today.zip